Custom Column

Sometimes it's necessary to lookup specific domain information when all domain availability and link popularity retrieved. It can be a Google Query, or real-time Registrar database lookup (RRP - Registry / Registrar protocol). Custom Column feature can be used in such situations. When all domain information is retrieved by the program, expression from Calculate Expression setting is calculated. Result of this expression is written to the Custom Column for current domain. Custom Column value is saved when the document saved and exported when you export the whole domain list.

Enable Custom Column and Calculate Expression checkboxes

If you want to use Custom Column, select these checkboxes and clear them otherwise.

Custom Column Name

Enter a Custom Column name that will be displayed in the domain list.

Expression

Currently, the following functions and variables are supported:

Variables:
domain - full domain name (with TLD).
domain_noTLD - domain name w/o TLD.
TLD - TLD.
DateTime - Current Date and Time.

Functions:
GoogleQuery_ResultCount(query) - Gives a number of results for a query.
Google_ResultCount(URL) - The same as above, but you need to provide URL instead of query.

Here are several examples of using Custom Column.

Example A. You need to check Google link popularity but count links from pages written in German only! Use the following expression: <%Google_ResultCount("http://www.google.com/search?q=%22www." & domain & "%22&safe=off&num=1&lr=lang_de")%>

Example B. You need to check whether a domain contain some word(s). Use the following expression: <%Google_ResultCount("http://www.google.com/search?q=word1+word2+site%3Awww." & domain & "&num=1")%>
Replace word1 and word2 with desired words.

Example C. In addition to usual Google popularity, you need to check Google popularity for a domain without TLD. Use this expression: <%GoogleQuery_ResultCount(domain_noTLD)%>